|
Расположение в меню |
---|
Вид → Стерео → Стерео красный/голубой |
Верстаки |
Все |
Быстрые клавиши |
Нет |
Представлено в версии |
- |
См. также |
Четверная буферизация стерео, Стерео с чередованием строк, Стерео с чередованием столбцов, Выключить стерео |
The Std ViewIvStereoRedGreen command changes the active 3D view to red/cyan, anaglyph, stereo view mode. To use this stereo mode glasses with colored lenses are required.
See also: Preferences Editor.
Смотрите так же: Основы составления скриптов в FreeCAD.
Use the setStereoType
method of the View object to change the stereo mode. The available modes are "Anaglyph"
, "QuadBuffer"
, "InterleavedRows"
, "InterleavedColumns"
and "None"
.
import FreeCADGui
view = FreeCADGui.ActiveDocument.ActiveView
view.setStereoType("Anaglyph")
view.getStereoType()